home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (4th Edition) / The Business Master - 4th Edition.iso / files / utilstem / swamp / rffe_v20.exe / RFF.TXT < prev    next >
Encoding:
Text File  |  1993-01-30  |  5.7 KB  |  163 lines

  1.                      Recursive File Find v2.0 RFF.EXE
  2.                           (C) 1993 by P.E. Turton
  3.                       RR #3, Wainfleet, Ontario L0S 1V0
  4.  
  5.  
  6. Syntax:
  7.    RFF [d:][\path] <filespec> [/switches] [/@[adhrsv]] [/t[-|+][MM/DD/YY]]
  8.  
  9.     Where:  [d:] is a drive
  10.  
  11.         [path] is a valid path. eg: \DOS
  12.  
  13.         <filespec> is a partial file name. eg: MAND as in comMAND.com
  14.  
  15.     These characters are invalid in <filespec>: \<>=,;:*[]()/+
  16.  
  17.     Switches are: a, c, d, h, i, j, l, m, p, s, w, x, z, #, ?
  18.  
  19.             Ctrl+C to abort program or listing
  20.  
  21.  
  22. Recursive File Find locates files on any drive searching by partial file
  23. name, attribute, or date.  Output from RFF.EXE can be sent to a printer or
  24. file to create a list or a batch operation.
  25.  
  26.  If RFF.EXE cannot sniff out your file, try RFFE.EXE... maybe it was erased!
  27.  
  28. Syntax:
  29.    RFF [d:][\path] <filespec> [/switches] [/@[adhrsv]] [/t[+|-][MM/DD/YY]]
  30.  
  31.     [d:]  Specifies a drive you want to search. If used, it must be first.
  32.  
  33.     [path] Specifies a valid path. eg: \DOS
  34.  
  35.     <filespec> Specifies the partial filename or pattern to search for.
  36.  
  37.     [/switches] Define search parameters or output.
  38.         a   - Search all valid logical drives C: through Z:
  39.         c   - Search current directory but not its subdirectories.
  40.         i   - Toggle display of complete file information.
  41.         p   - Pause every 24 lines of display output.
  42.         s   - Search current directory and its subdirectories.
  43.         x   - Toggle fill of <filespec> extension.
  44.         h   - These help screens.
  45.         #   - Send output to printer or file.
  46.  
  47.     /d,j,l,w,z  - Produce output suitable for redirection to create a
  48.               Batch file. Use with the 'i' switch.
  49.  
  50.         d   - DEL <foundfile> %1
  51.         j   - ARJ a %1.arj <foundfile>
  52.         l   - LHA a /x %1.lhz <foundfile>
  53.         m   - MOVE <foundfile> %1
  54.         w   - %1 <foundfile> %2 %3 %4 %5
  55.         z   - PKZIP -P %1.zip <foundfile>
  56.  
  57. By setting the environment variable 'RFF' in your AUTOEXEC.BAT, the switches
  58. 'a, c, i, p, & x' can be preset at boot up. Experiment with the switches to
  59. get the display you want.
  60.  
  61. eg: 'set RFF=ip' will display file names only and pause at each full screen.
  62.  
  63.     'set RFF=C' will display only the files in the current directory.
  64.  
  65.  
  66. Syntax:
  67.    RFF [d:][\path] <filespec> [/switches] [/@[adhrsv]] [/t[-|+][MM/DD/YY]]
  68.  
  69.     /@a,d,h,r,s,v   - Search for a file by its attribute.
  70.  
  71.         /@  - Find all matches that have NOT any attributes set.
  72.               or specify any combination of...
  73.         a   - Archive
  74.         d   - Directory
  75.         h   - Hidden
  76.         r   - Read Only
  77.         s   - System
  78.         v   - Volume ID
  79.  
  80. eg: RFF . /@hs  ....finds all files with Hidden & System attributes set.
  81.  
  82.  
  83.             /t  - Search for a file by date.
  84.  
  85.             /t  - 't' alone finds today's files.
  86.     /tMM/DD/YY  - Find files on that date.
  87.    /t+MM/DD/YY  - Find files on and after that date.
  88.    /t-MM/DD/YY  - Find files on and before that date.
  89.  
  90. eg: RFF . /t+06/26/92  ....finds all files created on and after June 26/92
  91.  
  92.  
  93. Examples for filling your search pattern:
  94.  
  95.             . = *.*
  96.             ? = ?
  97.          ???? = ????
  98.           ?xx = ?xx?????.???, ??xx????.???.... ??????xx.???
  99.          ?xx. = ?xx.???
  100.            xx = xx??????.???, ?xx?????.???.... ??????xx.???
  101.         xx.xx = ??????xx.xx?, ?????xx.xx?.... xx.xx?
  102.  
  103.  
  104. RFF E: .C /X /T
  105. Show information for all of today's files with the '.C' extension on drive E:
  106.  
  107. RFF win /c
  108. Show files on current drive & current directory with 'WIN' in the file name.
  109.  
  110. RFF .bk! /adi#
  111. Create a batch file that will delete all files with the extension 'BK!' on
  112. all valid drives C: to Z:. Notice the use of the 'i' switch to turn off the
  113. display of complete file information.
  114.  
  115. Contents of BAKDEL.BAT could be:
  116.  
  117.                    DEL e:\wp51\doc\MYTEXT.BK! %1
  118.                    DEL e:\wp51\letters\GATES007.BK! %1
  119.                    DEL e:\wp51\letters\HERMAN02.BK! %1
  120.                    DEL e:\wp51\letters\GEORGE05.BK! %1
  121.  
  122. RFF \123\wk1 budg
  123. Find all files in '\123\WK1' with a 'BUDG' in the file name.
  124.  
  125.  
  126. WARRANTY:
  127.  
  128. This is "user-supported" software and is distributed on an "AS-IS" basis. 
  129. I disclaim all warranties, either implied or expressed, including, but not
  130. limited to implied warranties of merchantability and fitness for a
  131. particular purpose with respect to the program.
  132.  
  133. Should the program prove not suitable for their purpose, the purchaser
  134. assumes all risk. In no event will I be liable for any damages whatsoever
  135. (including without limitation damages for loss of business profits, business
  136. interruption, loss of business information and the like) arising from the
  137. use or the inability to use this program even if I have been advised of the
  138. possibility of such damages.
  139.  
  140.  
  141. This program is offered under a shareware concept.
  142.  
  143. Home Use:
  144.    If you find Recursive File Find useful, a donation of $30 will be
  145.    greatly appreciated ... OR give a copy of Recursive File Find to two
  146.    friends and send me $10.
  147.  
  148. Business or Government Use:
  149.    If Recursive File Find is used in a business, large or small, please
  150.    register its use. Registration is $30 for a single machine.  A site
  151.    license for all computers at the same address is available.
  152.  
  153. Bulletin Board Sysops:
  154.    Registration is free to all BBS sysops and operators as a thank you for
  155.    their service to the BBS community.
  156.  
  157.      RFF.EXE and RFFE.EXE are both covered by the registration fee.
  158.  
  159.                 Recursive File Find (Erased) v2.0 RFFE.EXE
  160.                      Recursive File Find v2.0 RFF.EXE
  161.                           (C) 1993 by P.E. Turton
  162.                       RR #3, Wainfleet, Ontario L0S 1V0
  163.